03. 练习:算术运算符
练习:平均电费
我们用 Python 尝试运算操作吧!
我在过去三个月的电费是 23 美元、32 美元和 64 美元。这三个月的每月平均电费是多少?请写一个表达式来计算均值,并使用 print()
查看结果。
Start Quiz:
# Write an expression that calculates the average of 23, 32 and 64
# Place the expression in this print statement
print()
练习:计算
在这道练习中,你需要通过编写 Python 程序来帮助一位铺瓦工做一些计算。
地面上有两个区域需要贴砖,其中一个区域的大小为宽 9 块砖,长 7 块砖,另一个区域的大小为宽 5 块砖,长 7 块砖。此外,6块砖头组成一包。
请编写程序计算以下问题:
- 这位铺瓦工贴完这两个区域一共需要多少块砖?
- 如果购买 17 包砖,且每包有 6 块砖。铺完两个区域之后,还剩下多少块砖?
Start Quiz:
# Fill this in with an expression that calculates how many tiles are needed.
print()
# Fill this in with an expression that calculates how many tiles will be left over.
print()
代码格式
SOLUTION:
- `print((17 - 6)%(5 + 2))`
- `print(4/2 - 7*7)`